This article refers to the address: http:// The correct harness can improve the overall performance of the different headlight parts and increase the lighting output of the headlights. Some harnesses are designed to complement higher performance bulbs. So if you have recently upgraded your headlights, you might need a new harness to keep the new lights performing efficiently. When looking for a new harness, you need to be sure that all the parts of the headlight wire harness kit are of the finest quality-not only the wires but as well as the relays, sockets, and terminals. The parts should be tough and must not be susceptible to burning. Also, check whether the harness is compatible with your vehicle. car headlight harness Dongguan YAC Electric Co,. LTD. , https://www.yacentercns.com
This paper introduces the hardware and software design of the car tire pressure monitoring system based on the Bluetooth chip nRF401. The design uses SPCE061A as the host computer controller to realize the management and output of the pressure and temperature signals of the car tires. The display system and the voice alarm system display the test results in real time and accurately. The system can accurately collect the temperature and pressure inside the tire, and can alarm in time when dangerous conditions occur.
1 Hardware design The tire pressure monitoring system mainly consists of two parts: one part is installed in the tire of the car, and the tire emission module is composed of pressure temperature sensor, signal processing unit and RF transmitter. The composition of the tire emission module is shown in Fig. 1(a). Its main function is to realize the automatic wake-up function by processing the signal of the acceleration sensor, collecting and processing the temperature and pressure signals of the tire and transmitting the signal through the transmitting module; the other part is the central monitor installed in the cab of the car, including RF receiver, digital signal processing unit and alarm display circuit, the main function of the central monitor: to realize the management and output of pressure and temperature signals from automobile tires, and to use LCD and voice alarm system to timely give according to user needs. The state, and does not delay the driver to drive, while detecting the temperature inside the car and display. The system diagram is shown in Figure 1(b).
The system adopts the integrated wireless transceiver chip nRF401 from Norway Nordic Company, which works in the 433MHz international ISM frequency band. The dual working frequency band can be freely switched, FSK modulation and demodulation, and direct digital synthesis DSS + phase-locked loop frequency stabilization PLL for frequency synthesis. The frequency stability is good, the anti-interference ability is strong, the receiving sensitivity is up to -105dBm, the maximum transmitting power is +10dBm, and the power consumption is low. When receiving standby state, the current is only 8μA, and the data transmission rate can reach 20kbit/s. The nRF401 uses a commonly used 4 MHz crystal as the PLL frequency reference without the need for expensive varactors. In addition, its demodulator is DC balanced, and the input data allows for various 011 sequences without the need for Manchester encoding. The controller's UART is directly connected to the DIN and DOUT terminals of the nRF401. After the MAX232 level conversion, it can be directly connected to the serial port of the computer. Another very important feature of the nRF401 is that the receiver has a high band impedance, which means no external is required. The surface wave filter eliminates the need to debug components.
The overall hardware structure design is shown in Figure 2 and 3. Due to the use of dedicated sensors, relatively simple hardware circuits can be designed. The power supply is provided by a lithium battery. In the TPMS, since the slave cannot transmit the pressure detected at any time to the host computer through the cable, wireless transmission should be adopted. Because the working environment of the automobile tire is relatively bad, the general wireless transmission module can not realize its function. It has been proved that the wireless transceiver chip nRF401 communication system works reliably and stably in the industrial environment with relatively harsh environment.
In the hardware circuit design, we fully consider the interference problem of the data received by the system, and adopt a certain anti-interference scheme for the design of relevant parts. For example, in the design of the PCB layout of the transmitting module, high-frequency interference is fully considered. The use of the Sunplus 61 board as the controller of the upper computer utilizes its own advantages of filtering and eliminating interference. The power is directly converted from the 12V power supply in the car through the voltage conversion circuit.
The wireless communication part of the system adopts the master-slave structure. The lower position machine is composed of the monitoring controller installed in the tested vehicle. The main station is the monitoring computer located in the control center; different lower position machines will detect through the wireless communication circuit. The data arrived is sent to the monitoring computer. Only one lower computer can work at the same time. The communication here is actually a shared medium. In order to avoid conflicts between multiple lower computers competing for channels, only the primary station sends an allowable communication signal to a lower computer. Only send data. The communication module consists of nRF401 and few peripheral devices. PCB antenna is used. The data transceiver terminal of nRF401 is directly connected to the serial port of MCU. The MCU controls the state of nRF401 with three I/O ports. The low voltage MCU with 3V power supply is selected. It shares the same power supply and the same 4MHz crystal oscillator as the nRF401.
2 Software design In wireless communication systems, due to factors such as power supply, space noise and transmission path, direct data transmission is easy to be interfered with. Therefore, it is necessary to design a transmission protocol to ensure establishment on such unreliable physical links. As a reliable data connection, the system's wireless communication protocol mainly works in the data link layer of the OSI reference model, and the necessary error detection coding is performed through the protocol. Error control ensures correct and reliable data transmission.
The lower computer (four for example) collects data in real time, and the system only has one nRF401 chip receiving, and adopts the working mode of wirelessly transmitting data at the same frequency, so the four lower computers cannot simultaneously send pressure data. It is necessary to use the answer dialogue method to resolve this conflict, that is, each lower computer is assigned a password, which can be regarded as the assigned address, and all the lower computers are usually in the state of accepting data, waiting for the request of the upper computer. When the host computer sends a data request with an address, the lower computer judges whether to respond according to the received address; the upper computer sends the address of each lower computer in sequence and immediately changes to the receiving state, and the data is not received after 5 seconds delay. Then it is changed to the transmission state, and an error is reported which the lower computer has a problem, and the request is sent to the next lower computer; the lower computer receives and judges the address data, and if it is its own address, the password is correct, and immediately becomes the transmission state, and the transmission is performed. The latest data collected, after transmission, changes back to the receiving state, waiting for the host computer to send back the data to confirm that the transmission is correct (because environmental factors may cause transmission errors); the upper computer receives the data and saves it, then becomes the transmitting state, The lower computer sends back the data just received, and then waits for the acknowledgment signal of the lower computer; the lower computer receives the returned data and compares it with the data just sent. If it is consistent, it sends an acknowledgment signal. If it is inconsistent, continue. Send, and repeat the last two steps; if the host computer accepts the confirmation signal, Then the saved data is sent to the handler, and if not, the address request is repeated.
After the power-on reset of the lower computer, the above initialization procedure is started, and the loop in the flow chart is entered. The pressure and temperature acquisition are completed in the timer interrupt, and the interruption time is tentatively scheduled to be collected every 5 seconds. In order to improve the system real-time and anti-interference ability, when the voltage or temperature data collected by the lower computer exceeds the specified range, the lower computer immediately becomes the transmitting state, and a special alarm signal is issued, and at this time, the upper computer does not work at any time. Once the status receives the alarm signal, it immediately interrupts the current communication and establishes communication with this lower computer.
In order to improve the anti-interference ability of the system, the software filtering part is added in the software design, the data collected in the last 5 times in the continuous buffer is stored, and the average value is obtained, and then displayed as the air pressure at that time. This eliminates spikes that occur due to inaccuracies in certain data, causing the system to misjudge.
3 Conclusion This paper introduces the design of the wireless communication data acquisition system in the automobile tire pressure monitoring system from the aspects of hardware and software. The circuit structure is simple and the anti-interference is strong; the system can collect the temperature and pressure in the tire in time and accurately. And can alarm when there is a dangerous situation. The system needs to be improved in terms of energy saving, stability and installation.
The author's innovation point: the use of a variety of anti-interference methods in the software and hardware design process of the car tire pressure monitoring system, greatly improving the system's anti-interference ability.
Application of New RF Transceiver Chip nRF401 in Automotive Tire Pressure Monitoring System
0 Introduction Tire failure is an important cause of sudden traffic accidents during high-speed driving. According to statistics, about 70% of the traffic accidents on the expressway are caused by punctures. Keeping the standard tire pressure and timely detecting the tire leakage is the key to prevent the tire from bursting. Therefore, monitoring the parameters such as tire pressure and temperature is an important guarantee for safe driving. The development and research of the tire tire pressure monitoring system TPMS (Tire Pressure Monitoring System) is an effective technical measure to ensure the safety of driving, and is also an important subject worth studying. TPMS is currently the most popular automobile tire pressure monitoring system. It can automatically and automatically monitor tire pressure and temperature in real-time and dynamic conditions, and perform abnormal phenomena such as low tire pressure, high air pressure, high air leakage and high temperature. Automatic alarms to reduce the incidence of accidents and ensure safe driving. From the system configuration, information such as pressure and temperature can be transmitted and received by the wireless device.